Security News
vlt Debuts New JavaScript Package Manager and Serverless Registry at NodeConf EU
vlt introduced its new package manager and a serverless registry this week, innovating in a space where npm has stagnated.
es6-template-strings
Advanced tools
var template = require('es6-template-strings');
// Hello WORLD!
console.log(template('Hello ${place.toUpperCase()}!', { place: "World" }));
// You can reuse same templates:
var compile = require('es6-template-strings/compile')
, resolveToString = require('es6-template-strings/resolve-to-string')
, compiled = compile('Welcome to ${siteName}, you are visitor number ${visitorNumber}!');
// Welcome to MySite, you are visitor number 137!
console.log(resolveToString(compiled, { siteName: "MySite", visitorNumber: 137 }));
// Welcome to OtherSite, you are visitor number 777!
console.log(resolveToString(compiled, { siteName: "OtherSite", visitorNumber: 777 }));
// You may prepare custom tag functions
var resolve = require('es6-template-strings/resolve');
var customTag = function (literals/*, …substitutions*/) {
// Process input and return result string
};
// Output template processed by customTag:
customTag.apply(null, resolve(compiled, {/* context */}));
In your project path:
$ npm install es6-template-strings
You can easily bundle es6-template-strings for browser with modules-webmake
$ npm test
FAQs
Compile and resolve template strings notation as specified in ES6
We found that es6-template-strings demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
vlt introduced its new package manager and a serverless registry this week, innovating in a space where npm has stagnated.
Security News
Research
The Socket Research Team uncovered a malicious Python package typosquatting the popular 'fabric' SSH library, silently exfiltrating AWS credentials from unsuspecting developers.
Security News
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.